net/http.Transport.idleConn (field)
13 uses
net/http (current package)
transport.go#L99: idleConn map[connectMethodKey][]*persistConn // most recently used at end
transport.go#L838: m := t.idleConn
transport.go#L839: t.idleConn = nil
transport.go#L1059: if t.idleConn == nil {
transport.go#L1060: t.idleConn = make(map[connectMethodKey][]*persistConn)
transport.go#L1062: idles := t.idleConn[key]
transport.go#L1071: t.idleConn[key] = append(idles, pconn)
transport.go#L1122: if list, ok := t.idleConn[w.key]; ok {
transport.go#L1162: t.idleConn[w.key] = list
transport.go#L1164: delete(t.idleConn, w.key)
transport.go#L1196: pconns := t.idleConn[key]
transport.go#L1203: delete(t.idleConn, key)
transport.go#L1214: t.idleConn[key] = pconns[:len(pconns)-1]
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |